@charset "UTF-8";
video{
  object-fit:fill;
  width: 100%;
}
.beizhu {
  color: white;
  position: absolute;
  left: 30px;
  bottom: 0;
  z-index: 333;
  background: none;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.preload_logo {
  -webkit-animation: shangxia 3s;
  animation: shangxia 3s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

#search {
  bottom: 0;
  position: absolute;
  right: 97px;
  display: none;
}

#search .btn {
  background: url("../images/search_icon2.png") no-repeat center;
  background-size: cover;
  position: absolute;
  right: 9px;
  top: 3px;
  width: 20px;
  height: 20px;
  padding: 0;
}

.nav-bar.on #search {
  bottom: -35px;
}
.nav-bar.on #search #keyword {
  border: 1px solid #dadada;
    color: black;
    -webkit-text-fill-color: black;
    caret-color: black;
}

/*header*/
/********************
** Menu-CSS
********************/
#menu {
  font-size: 18px;
  letter-spacing: 1px;
  position: absolute;
  right: 100px;
  top: 20px;
  z-index: 70;
  margin: 0;
  transition: 0.5s all ease-in-out;
  overflow: visible;
}

#menu .header_search_icon .pic1 {
  display: inline-block;
}
#menu .header_search_icon .pic2 {
  display: none;
}

.nav-bar.on #menu .header_search_icon .pic1 {
  display: none;
}
.nav-bar.on #menu .header_search_icon .pic2 {
  display: inline-block;
}

#menu li {
  float: left;
  margin: 10px 0;
  border-right: 2px solid #fff;
  list-style: none;
  transition: 0.5s all ease-in-out;
}

#menu a {
  color: #fff;
  padding: 0 20px 11px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.5s all ease-in-out;
  padding-bottom: 0;
}

#menu-line {
  height: 2px;
  left: 0;
  position: absolute;
  top: 24px;
  transition: all 600ms ease 0s;
  width: 101px;
}

#d-menu {
  margin: 0;
  padding: 0;
  position: absolute;
  width: 500px;
  top: 30px;
  left: 50%;
  margin-left: -250px;
  display: none;
}

#d-menu li {
  float: left;
  list-style: none;
}

#d-menu li a {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  margin: 5px 24px;
}

.nav-bar {
  z-index: 333;
  background: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 115px;
  width: 100%;
  transition: 0.5s all ease-in-out;
}

.nav-bar.on {
  background-color: #fff;
  height: 65px;
  transition: 0.5s all ease-in-out;
}

.nav-bar.on #d-menu {
  top: 23px;
  display: block;
  transition: 0.5s all ease-in-out;
}

.nav-bar.on #menu a,
.nav-bar.on #d-menu li a {
  color: #333;
  font-weight: normal;
  font-size: 16px;
  transition: 0.5s all ease-in-out;
}

.nav-bar.on #d-menu li a {
  font-size: 17px;
}

.nav-bar.on #d-menu li a:hover {
  color: #00366c;
}

.nav-bar.on .logo {
  top: 5px;
  transition: 0.5s all ease-in-out;
}

.nav-bar.on .logo > a > img {
  max-height: 55px;
  transition: 0.5s all ease-in-out;
}

.nav-bar.on #menu {
  top: 10px;
  transition: 0.5s all ease-in-out;
}

.nav-bar.on #menu li {
  border-color: #333;
  border-width: 1px;
}

.nav-bar.on .header_menu_icon {
  background-color: #f3f3f3;
}

@-webkit-keyframes intervalHamburgerBorder {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}
@keyframes intervalHamburgerBorder {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}
.hamburger {
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
  cursor: pointer;
  position: absolute;
  top: 2.25em;
  right: 2.25em;
  z-index: 110;
  border-radius: 50%;
  background-color: var(--button-bg);
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hamburger:after {
  width: 45px;
  height: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  pointer-events: none;
  border: 4px solid white;
  border-radius: 50%;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-name: intervalHamburgerBorder;
  animation-name: intervalHamburgerBorder;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.hamburger__line {
  width: 28px;
  height: 2px;
  overflow: hidden;
  position: absolute;
  z-index: 10;
}

.header_menu_icon {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header_menu_icon:hover {
  background: #fff;
}

.header_menu_icon:hover > span {
  /*background: white;*/
}

.header_menu_icon:hover > span:nth-child(1) {
  width: 20px;
}

.header_menu_icon:hover > span:nth-child(3) {
  width: 18px;
}

.header_menu_icon > span {
  display: inline-block;
  height: 2px;
  width: 23px;
  margin-bottom: 7px;
  background: black;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border-radius: 5px;
  margin-left: 13px;
}

.header_menu_icon > span:last-child {
  margin-bottom: 0;
}

.header_menu_icon.hamburger {
  position: relative;
  top: -11px;
  right: inherit;
  z-index: inherit;
}
.header_menu_icon.hamburger:hover {
  background: #f7a905;
}

/********************
** Menu Layer-CSS
********************/
.examples {
  z-index: 3333;
  position: fixed;
  top: -15px;
  left: 5px;
  width: 100%;
  bottom: 0;
  background: #00366c;
  text-align: center;
  padding-top: 77px;
  height: 100%;
  opacity: 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  display: block;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  max-height: 100%;
}

.examples.active {
  opacity: 1;
  top: 0;
  left: 0;
  visibility: visible;
  z-index: 9999;
}

.examples-wrapper {
  display: table-cell;
  vertical-align: middle;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

.examples-column {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  /*width: calc(25% -30px);*/
  min-width: 250px;
  margin: 0 0 40px;
}

.examples-column ul {
  margin: 0;
}

.examples-column li {
  list-style: none;
  text-align: center;
  float: none;
}

.examples-column a {
  font-size: 42px;
  color: #fff;
  display: block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
  padding: 5px;
  text-decoration: none;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}

.examples-column a:hover {
  color: #fffe89;
}

.examples-column a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #fff;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.examples-column a:active:before, .examples-column a:focus:before,
.examples-column a:hover:before {
  right: 0;
}

.info-close {
  position: fixed;
  top: 20px;
  right: 100px;
  z-index: 999;
  font-size: 3em;
  cursor: pointer;
  height: 50px;
  width: 50px;
  box-sizing: border-box;
  line-height: 50px;
  display: inline-block;
  -webkit-transition: all 530ms cubic-bezier(0.48, 0.03, 0.195, 1.51);
  -moz-transition: all 530ms cubic-bezier(0.48, 0.03, 0.195, 1.51);
  -o-transition: all 530ms cubic-bezier(0.48, 0.03, 0.195, 1.51);
  transition: all 530ms cubic-bezier(0.48, 0.03, 0.195, 1.51);
  transform: scale(0) translateZ(0);
}

.examples.active .info-close {
  transform: scale(1) translateZ(0);
}

.info-close:after, .info-close:before {
  transform: rotate(-45deg);
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -25px;
  display: block;
  height: 6px;
  width: 50px;
  background-color: #fff;
  transition: all .25s ease-out;
}

.info-close:after {
  transform: rotate(-135deg);
}

.info-close:hover:after, .info-close:hover:before {
  transform: rotate(0);
}

.logo-w,
.logo {
  left: 100px;
  opacity: 1;
  position: absolute;
  top: 14px;
  z-index: 99;
}

.logo-w img,
.nav-bar .logo > a > img {
  max-height: 80px;
  transition: 0.5s all ease-in-out;
}

.logo-w {
  top: 22px;
  transition: 0.5s all ease-in-out;
}

.foot_menu {
  position: absolute;
  right: 30px;
  bottom: 0;
  z-index: 333;
}
.foot_menu li {
  margin: 0 35px;
}
.foot_menu li a {
  color: white;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s3 .public_word_box {
  width: auto;
}
.s3 .fp-tableCell {
  position: relative;
}
.s3 .main_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}
.s3 .content {
  position: absolute;
  bottom: 31vh;
  left: 5%;
  z-index: 4;
  color: white;
}
.s3 .content h5 {
  font-size: 60px;
  font-weight: 600;
}
.s3 .content .line {
  height: 5px;
  width: 135px;
  background: white;
  display: inline-block;
}
.s3 .content p {
  font-size: 30px;
  margin-bottom: 38px;
}
.s3 .content .an-btn-ctn {
  width: 230px;
  height: 65px;
}
.s3 .brand-action-box .item {
  cursor: pointer;
  position: relative;
  text-align: center;
  padding-top: 5px;
}
.s3 .brand-action-box .item:hover .pic, .s3 .brand-action-box .item.on .pic {
  background: #e2e9f3;
}
.s3 .brand-action-box .item .pic {
  background: white;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.s3 .brand-action-box .item .pic img {
  /*max-width: 39%;*/
  max-width: 190px;
}
.s3 .brand-action-box .v-process {
  top: 0;
  left: 0;
  bottom: inherit;
}
.s3 .slide_item {
  height: 100vh;
}
.s3 .slide_item .video-render {
  height: 100%;
}

.brand-action-box {
  position: absolute;
  height: 70px;
  text-align: center;
  width: 100%;
  bottom: 0px;
  left: 0;
  z-index: 3;
  background-color: #fff;
}

.brand-action-box a {
  width: 33.33%;
  text-align: center;
  display: block;
  float: left;
  font-size: 30px;
  line-height: 100px;
}

.public_word_box {
  width: 370px;
  text-align: left;
}
.public_word_box h4 {
  font-size: 60px;
  font-weight: 600;
}
.public_word_box .line {
  height: 5px;
  width: 135px;
  background: white;
  display: inline-block;
  margin: 48px 0;
}
.public_word_box .summary {
  font-size: 24px;
  margin-bottom: 38px;
  width: 100%;
}
.public_word_box .more {
  font-size: 18px;
  color: white;
  width: 186px;
  height: 55px;
}

/*英文版*/
/*****SIZE******/
/*苹果电脑1450*/
@media (max-width: 1500px) {
  .shipin_page .container .public_word_box h5 {
    margin-bottom: 28px;
    font-size: 40px;
  }

  .public_word_box h4 {
    font-size: 50px;
    width: 299px !important;
  }

  .public_word_box .line, .section3 .owl_shipin .item .content .line {
    margin: 38px 0;
    margin-bottom: 22px;
  }

  .public_word_box .summary {
    font-size: 22px;
  }

  .header:not(.on) .container2 .anniu_list .header_menu_icon img {
    width: 45px;
  }

  .s3 .public_word_box h4 {
    width: 409px !important;
  }

  .s3 .brand-action-box .item .pic img {
    max-width: 39%;
  }
}
@media screen and (max-width: 1366px) {
  .public_word_box h4 {
    font-size: 35px;
    width: 194px !important;
  }

  .public_word_box .line, .section3 .owl_shipin .item .content .line {
    margin-top: 0;
    margin-bottom: 15px;
  }

  .public_word_box .summary {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .public_word_box .more {
    width: 170px;
    height: 50px;
  }

  .s3 .content .an-btn-ctn {
    width: 170px;
    height: 50px;
  }

  .examples-column {
    margin: 0;
    min-height: inherit;
  }

  .examples-column a {
    font-size: 35px;
  }

  .foot_menu li {
    margin: 0 18px;
  }


}
@-webkit-keyframes bg_change_size2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bg_change_size2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/****************************************/
@-webkit-keyframes shipin_jindutiao2 {
  0% {
    width: 0%;
  }
  100% {
    width: 55px;
  }
}
@-webkit-keyframes shipin_jindutiao2 {
  0% {
    width: 0%;
  }
  100% {
    width: 55px;
  }
}
@keyframes shipin_jindutiao2 {
  0% {
    width: 0%;
  }
  100% {
    width: 55px;
  }
}
@-webkit-keyframes shipin_jindutiao {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes shipin_jindutiao {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes opacity {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes shangxia {
  0% {
    margin-top: -108px;
  }
  100% {
    margin-top: -50px;
  }
}
@-webkit-keyframes bg_change_size {
  0% {
    margin-top: -108px;
  }
  100% {
    margin-top: -50px;
  }
}
@keyframes bg_change_size {
  0% {
    margin-top: -108px;
  }
  100% {
    margin-top: -50px;
  }
}
.an-btn-ctn {
  width: 346px;
  height: 81px;
  overflow: hidden;
  position: relative;
  display: block;
  border: 3px dotted white;
}

.an-btn {
  border-radius: 0 !important;
  background-color: transparent !important;
  padding: 0 !important;
  width: auto !important;
  float: none !important;
  height: 100% !important;
  -webkit-transform-origin: right top 0px;
  -ms-transform-origin: right top 0px;
  transform-origin: right top 0px;
  background-color: transparent;
  display: block;
  -webkit-transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 1s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 1s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
}

.an-btn:before {
  background-color: #213875;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
  height: 100%;
}

.an-btn:hover:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.an-btn:hover .an-btn-text {
  color: #FFF !important;
}

.an-btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

section.opener.large {
  min-height: 580px;
  height: 100%;
  min-height: 580px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

section.opener {
  background: #1f1f1f none repeat scroll 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bg-video {
  height: 100%;
  position: relative;
}

.video_bg {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  z-index: 3;
}

section.opener .bg, .bg-video {
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
}

.bg-video video {
  /*left: 50%; */
  -o-object-fit: fill;
  object-fit: fill;
  min-width: 100%;
  /* position: absolute; */
  /* top: 50%; */
  /* transform: translateX(-50%) translateY(-50%); */
  z-index: 2;
  height: 100%;
}

section.opener article {
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 5;
}



/*# sourceMappingURL=self_item_public.css.map */
